home *** CD-ROM | disk | FTP | other *** search
- /* jumptable.h */
-
- struct LVOTable
- {
- LONG lt_LVO;
- struct Library *lt_LibBase;
- ULONG lt_oldFunction;
- ULONG lt_newFunction;
- };
-
- struct JumpTable
- {
- struct SignalSemaphore jt_Semaphore;
- UWORD pad_word;
- struct Task *jt_Owner;
- UBYTE jt_Function[NUMBEROFFUNCTIONS * 6];
- };
-
- /* Prototypes */
-
- BOOL InstallWedge (VOID);
- BOOL RemoveWedge (VOID);
- struct JumpTable *GetJumpTable (UBYTE *name);
-